home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / scale_absolute.ifx.pre < prev    next >
Text File  |  2004-08-03  |  666b  |  34 lines

  1. /*
  2.  * Scale_Absolute.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Scale To A Size.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. base  = 'Autofx_Scale_'
  19.  
  20. w     = GETCLIP(base||'w') ; IF w = "" THEN w = 320
  21. h     = GETCLIP(base||'h') ; IF h = "" THEN h = 200
  22.  
  23. Gadget.1 = 'INTEGER 120  5 50 14 "Width (Pixels):"' w
  24. Gadget.2 = 'INTEGER 270  5 50 14 "Height (Pixels):"' h
  25. Gadget.3 = 'END'
  26.  
  27. NewComplexRequest '"Scale"' Gadget 340 36
  28. IF rc ~= 0 THEN EXIT rc
  29.  
  30. CALL SETCLIP(base||'w', result.1)
  31. CALL SETCLIP(base||'h', result.2)
  32.  
  33. EXIT
  34.